home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000017_fdc@columbia.edu_Thu Apr 4 09:51:11 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  48 lines

  1. Article: 13285 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Building Kermit 8.0.201 on Irix 6.5
  6. Date: 4 Apr 2002 09:23:41 -0500
  7. Organization: Columbia University
  8. Lines: 31
  9. Message-ID: <a8hnld$i68$1@watsol.cc.columbia.edu>
  10. References: <RV+q8AeH4usM092yn@cinenet.net>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1017930222 18554 128.59.39.139 (4 Apr 2002 14:23:42 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 4 Apr 2002 14:23:42 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13285
  16.  
  17. In article <RV+q8AeH4usM092yn@cinenet.net>,
  18. Dark Moon  <the.earth.below@cinenet.net> wrote:
  19. : I've tried cc and gcc both.  Here are some results:
  20. I built it on IRIX 6.5 too, using the regular "make irix65" target,
  21. with no errors; you can find the resulting binary at:
  22.  
  23.   http://www.columbia.edu/kermit/ck80binaries.html
  24.  
  25. : cc -DSVR4 -DDIRENT -DNOGETUSERSHELL -DNOLISTEN -DPWID_T=uid_t -DCK_ANSIC
  26. : -DSELECT -DCK_RTSCTS -O -DIRIX65 -DCK_RTSCTS -DNOLATIN2 -DNOHEBREW -DNOKANJI
  27. : -DNOCYRIL -DNOUNICODE -DNOLOCAL -DNONET -DNOHELP -DNODEBUG -DNOFTP -DNOHTTP
  28. : -OPT:Olimit=0 -woff 1110,1552,1174  -DKTARGET=\"irix65\" -c ckcmai.c
  29. : cc-1020 cc: ERROR File = ckcmai.c, Line = 2392
  30. :   The identifier "CF_CMDL" is undefined.
  31. :               dodo(x,NULL,CF_CMDL);       /* set up for macro execution */
  32. :                           ^
  33. It looks like you added a bunch of CFLAGS.  Sometimes unforeseen combinations
  34. of feature-related defintions can cause problems like this, although in this
  35. case I don't see what the problem could be: CF_CMDL is defined unconditionally
  36. in ckuusr.h, which is included by ckcmai.c unless NOSPL is defined, which it
  37. is not in this case.
  38.  
  39. It looks to me like you are trying to build the smallest possible version of
  40. C-Kermit by disabling as many features as possible.  Maybe it would be easier
  41. to just use G-Kermit:
  42.  
  43.   http://www.columbia.edu/kermit/gkermit.html
  44.  
  45. - Frank
  46.